home *** CD-ROM | disk | FTP | other *** search
/ PC Plus SuperCD (UK) 1998 May / PCPlus May 1998=disk A.iso / full / CBUILDER / SAMS / SAMPLES / CHAP05 / PMEMAIN.H < prev    next >
Encoding:
C/C++ Source or Header  |  1997-02-12  |  882 b   |  25 lines

  1. //---------------------------------------------------------------------------
  2. #ifndef PMEmainH
  3. #define PMEmainH
  4. //---------------------------------------------------------------------------
  5. #include <Classes.hpp>
  6. #include <Controls.hpp>
  7. #include <StdCtrls.hpp>
  8. #include <Forms.hpp>
  9. //---------------------------------------------------------------------------
  10. class TPMEForm : public TForm
  11. {
  12. __published:    // IDE-managed Components 
  13.     TMemo *Memo;
  14.     TButton *Show;
  15.     TButton *Hide;
  16.     void __fastcall ButtonClick(TObject *Sender);
  17. private:        // User declarations
  18. public:         // User declarations
  19.     virtual __fastcall TPMEForm(TComponent* Owner);
  20. };
  21. //---------------------------------------------------------------------------
  22. extern TPMEForm *PMEForm;
  23. //---------------------------------------------------------------------------
  24. #endif
  25.